home *** CD-ROM | disk | FTP | other *** search
/ Cracking 2 / Cracking II..iso / Texty / crackme / CRKME2.TXT < prev    next >
Encoding:
Text File  |  1998-09-10  |  856 b   |  31 lines

  1.  
  2.  small crackme
  3.  (2nd by scut)
  4.  -
  5.  
  6.  this one was coded with size in mind (thanks to j0b for heavy
  7.  optimization ! :).
  8.  
  9.  it gets the password from the commandline so the syntax is:
  10.  crkme2.com <password>
  11.  
  12.  in case the password is valid it will print "valid". i included the source
  13.  in this zip file.
  14.  
  15.  it bases on a 22 byte lfsr (linear feedback shift register) implementation
  16.  i did a week ago, which produces a stream of "random" bits from a seed
  17.  build by the program code and the password, so patching is not allowed,
  18.  and would make absolutely no sense, since patching destroys the key alone :)
  19.  
  20.  good look, there are a few tips to reduce time when brute forcing:
  21.  
  22.  1. the password chars are only one of the following:    1. 'a' to 'z'
  23.                             2. '!','-','$','#'
  24.  
  25.  good luck again :)
  26.  
  27.  -
  28.  cu,
  29.  scut
  30.  (thanks to j0b again ! :)
  31.